home *** CD-ROM | disk | FTP | other *** search
/ Amiga Game-Power / Amiga Game-Power.iso / pd mix ii / access / thai / printer.h < prev    next >
C/C++ Source or Header  |  1994-05-20  |  523b  |  21 lines

  1.  
  2. /*
  3.  * Printer interface functions
  4.  *
  5.  */
  6.  
  7. extern LONG OpenPrinter ();
  8.     /* Returns TRUE if succeeds, FALSE if fails. */
  9.  
  10. extern void ClosePrinter ();
  11.     /* The printer must have been opened. */
  12.  
  13. extern LONG PrintString ( /* char * string */ );
  14.     /* Print the null terminated string on the printer. */
  15.     /* Returns the status of DoIO() (0 = ok, else error code) */
  16.  
  17. extern LONG DumpScreen ( /* struct Screen * screen */ );
  18.     /* Dumps an intuition screen on the printer in black and white. */
  19.     /* Returns the status of DoIO() */
  20.  
  21.